home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / vbcc.lha / vbcc / machines / amiga68k / libsrc / _chkabort.c next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  151 b   |  10 lines

  1. #include <libraries/dos.h>
  2. #include <proto/exec.h>
  3.  
  4. void _chkabort(void)
  5. {
  6.     if(SetSignal(0L,SIGBREAKF_CTRL_C)&SIGBREAKF_CTRL_C)
  7.         exit(0);
  8. }
  9.  
  10.